home *** CD-ROM | disk | FTP | other *** search
/ Master Visual Basic 3 / Master Visual Basic 3 (SAMS Publishing) (1994).ISO / mvprog / original / ch08 / myphone.bas < prev    next >
Encoding:
BASIC Source File  |  1994-03-31  |  263 b   |  12 lines

  1. ' All variables must be declared.
  2. Option Explicit
  3.  
  4. ' Declare a user-defined type that corresponds to a
  5. ' record in the file PHONE.DAT.
  6. Type PersonInfo
  7.     Name       As String * 40
  8.     Phone      As String * 40
  9.     Comments   As String * 100
  10. End Type
  11.  
  12.